home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / utils / flotxt10.arj / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-11-11  |  520b  |  20 lines

  1. @echo off
  2. cls
  3. if %1x == x goto help
  4. if %2x == x goto help
  5. echo This will copy the FLOWTEXT files from %1 to %2\FLOWTEXT
  6. echo Press Ctrl Break to abort or any other key to continue
  7. pause >nul
  8. mkdir %2\FLOWTEXT
  9. copy %1*.* %2\FLOWTEXT
  10. goto END
  11. :help
  12. echo FLOWTEXT Installation
  13. echo ---------------------------------------
  14. echo Usage: INSTALL [source:] [destination:]
  15. echo ---------------------------------------
  16. echo Example:  INSTALL A: C:  -- Will install FLOWTEXT from A: to the C: drive
  17. echo  
  18. :END
  19.  
  20.